Previous Book Contents Book Index Next

Inside Macintosh: Programming With the Text Encoding Conversion Manager /
Chapter 3 - Text Encoding Converter Reference / Text Encoding Converter Structures and Other Types
/


TECConversionInfo

When you call the function TECGetDirectTextEncodingConversions (page 72), you pass an array of text encoding conversion information structures. The function fills these structures with information about each type of supported conversion. A text encoding conversion information structure is defined by the TECConversionInfo data structure.

struct TECConversionInfo {
   TextEncoding sourceEncoding;
   TextEncoding destinationEncoding;
   UInt16      reserved1;
   UInt16      reserved2;
};
typedef struct TECConversionInfo TECConversionInfo;
Field Description
sourceEncoding
The text encoding specification for the source text.
destinationEncoding
The text encoding specification for the destination text.
reserved1
Reserved.
reserved2
Reserved.

Previous Book Contents Book Index Next

© Apple Computer, Inc.
13 NOV 1997